home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / quicktime / streaming / qtspacketizerreassembler / imaaudiortp / headers / rtprssmimaaudioresources.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  1.5 KB  |  70 lines

  1. /*
  2.     File:        RTPRssmIMAAudioResources.h
  3.  
  4.     Contains:    Declarations for IMA Audio RTPReassembler resources
  5.  
  6.     Copyright:    © 1997-1999 by Apple Computer Inc. all rights reserved.
  7.  
  8. */
  9.  
  10.  
  11.  
  12. #ifndef __RTPRSSMCOMPONENTVIDRESOURCES__
  13. #define __RTPRSSMCOMPONENTVIDRESOURCES__
  14.  
  15.  
  16.  
  17. #include "IMAAudioRTPResources.h"
  18.  
  19.  
  20.  
  21. /* ---------------------------------------------------------------------------
  22.  *        M A C R O S
  23.  * ---------------------------------------------------------------------------
  24.  */
  25.  
  26.  
  27. /*    change these for your component */
  28. /*    type and ID have to match what's in the code warrior project! */
  29.  
  30. #define COMPONENT_NAME_STRING                    "Sample IMA Audio Reassembler"
  31. #define COMPONENT_INFO_STRING                    "Sample IMA Audio Reassembler"
  32.  
  33. #define COMPONENT_ENTRY_POINT_STRING            "RTPRssmIMAAudio_ComponentDispatch"
  34. #define COMPONENT_PPC_PEF_STRING                "RTPRssmIMAAudio.pef"
  35. #define COMPONENT_68K_CODE_STRING                "RTPRssmIMAAudio.rsrc"
  36.  
  37.  
  38.  
  39. /* ---------------------------------------------------------------------------
  40.  *        C O N S T A N T S
  41.  * ---------------------------------------------------------------------------
  42.  */
  43.  
  44.  
  45. enum
  46. {
  47.     kComponentType                    = kRTPReassemblerType,
  48.     kComponentSubType                = kIMAAudioDataFormat
  49. };
  50.  
  51. enum
  52. {
  53.     kComponentBaseID                = 256,
  54.     kComponentBaseIDPPC                = kComponentBaseID
  55. };
  56.  
  57. #define kComponentBaseID68K            ( kComponentBaseID + 1 )
  58.  
  59. enum
  60. {
  61.     kComponentVersion                = 0x00010001,
  62.     kComponentFlags                    = 0
  63. };
  64.  
  65. #define kComponentRegFlags            ( componentDoAutoVersion | componentHasMultiplePlatforms )
  66.  
  67.  
  68.  
  69. #endif /* __RTPRSSMCOMPONENTVIDRESOURCES__ */
  70.